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 ac4cb6e commit c849a27Copy full SHA for c849a27
.gitattributes
@@ -0,0 +1 @@
1
+* text=auto eol=lf
.travis.yml
@@ -1,5 +1,10 @@
sudo: false
2
3
+os:
4
+ - linux
5
+ - osx
6
+ - windows
7
+
8
language: node_js
9
node_js:
10
- "6.0.0"
@@ -12,6 +17,17 @@ env:
12
17
- ESLINT_VERSION=4
13
18
- ESLINT_VERSION=5
14
19
20
+matrix:
21
+ exclude:
22
+ # ESLint 5 supports Node.js 6.14.0 and up.
23
+ - node_js: "6.0.0"
24
+ env: ESLINT_VERSION=5
25
+ # Reduce build jobs.
26
+ - os: osx
27
+ env: ESLINT_VERSION=4
28
+ - os: windows
29
30
15
31
before_script:
16
32
- npm i --no-save async
33
- npm i --no-save eslint@$ESLINT_VERSION; true
0 commit comments