We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab6cf3f commit d641385Copy full SHA for d641385
.gitignore
@@ -1,2 +1,3 @@
1
.DS_Store
2
-/nbproject/private/
+/nbproject/private/
3
+.phplint-cache
.gitlab-ci.yml
@@ -0,0 +1,18 @@
+# Defines stages which are to be executed
+stages:
+ - syntax
4
+
5
+#
6
+### Stage syntax
7
8
9
+syntax:lint:
10
+ stage: syntax
11
+ image: bobey/docker-gitlab-ci-runner-php7
12
+ allow_failure: false
13
14
+ script:
15
+ - composer require overtrue/phplint
16
+ - echo "Syntax checking PHP files"
17
+ - echo "For more information http://www.icosaedro.it/phplint/"
18
+ - vendor/bin/phplint
.phplint.yml
@@ -0,0 +1,9 @@
+path: ./
+jobs: 10
+cache: .phplint-cache
+extensions:
+ - php
+ - lng
+exclude:
+ - vendor
0 commit comments