This repository was archived by the owner on Aug 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Original file line number Diff line number Diff line change
1
+ ### v5.2.5
2
+
3
+ * Fix file import resolution (#340 )
4
+ * Fix a bug detecting ` .eslintrc.js ` configurations (#343 )
5
+ * Fix file now uses the same worker as for linting (#307 )
6
+
1
7
### v5.2.4
2
8
3
9
* Update dependencies to bring in some bug fixes
Original file line number Diff line number Diff line change 1
1
dependencies :
2
2
pre :
3
+ # Force updating wget due to the current containers being too out of date
3
4
- sudo apt-get update
4
5
- sudo apt-get install wget
5
- post :
6
+ override :
6
7
- wget -O atom-amd64.deb https://atom.io/download/deb
8
+ # - sudo apt-get update # Cut out until wget is fixed on the containers
7
9
- sudo dpkg --install atom-amd64.deb || true
8
10
- sudo apt-get -f install -y
11
+ - atom -v
12
+ - apm -v
13
+ - apm install
9
14
test :
10
15
override :
11
16
- npm run lint
Original file line number Diff line number Diff line change 2
2
"name" : " linter-eslint" ,
3
3
"main" : " ./lib/main" ,
4
4
"activationCommands" : [],
5
- "version" : " 5.2.4 " ,
5
+ "version" : " 5.2.5 " ,
6
6
"description" : " Lint JavaScript on the fly, using ESLint" ,
7
7
"repository" : " https://github.com/AtomLinter/linter-eslint.git" ,
8
8
"license" : " MIT" ,
28
28
"babel-eslint" : " ^4.1.6" ,
29
29
"babel-preset-steelbrain" : " ^1.0.0" ,
30
30
"babel-preset-steelbrain-legacy" : " ^1.0.0" ,
31
- "eslint-config-airbnb" : " latest" ,
32
- "eslint-config-steelbrain" : " latest" ,
31
+ "eslint-config-airbnb" : " ^1.0.2" ,
33
32
"eslint-plugin-import" : " ^0.11.0" ,
34
33
"eslint-plugin-react" : " ^3.10.0" ,
35
34
"shelljs" : " ^0.5.3"
45
44
}
46
45
},
47
46
"eslintConfig" : {
48
- "extends" : " steelbrain" ,
49
47
"rules" : {
50
48
"no-empty" : 0 ,
51
49
"no-console" : 0 ,
52
50
"no-new" : 0 ,
51
+ "no-extra-semi" : 1 ,
52
+ "semi" : 0 ,
53
+ "func-names" : 0 ,
54
+ "strict" : [0 , " never" ],
55
+ "comma-dangle" : 0 ,
53
56
"semi" : [
54
57
2 ,
55
58
" never"
56
59
]
57
60
},
61
+ "extends" : " airbnb/base" ,
58
62
"parser" : " babel-eslint" ,
59
63
"globals" : {
60
64
"atom" : " true"
You can’t perform that action at this time.
0 commit comments