Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit a1371c4

Browse files
committed
SQUASH ME Merge branch 'master' into steelbrain/improve
Squash this commit in before final merge.
1 parent a386c09 commit a1371c4

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
17
### v5.2.4
28

39
* Update dependencies to bring in some bug fixes

circle.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
dependencies:
22
pre:
3+
# Force updating wget due to the current containers being too out of date
34
- sudo apt-get update
45
- sudo apt-get install wget
5-
post:
6+
override:
67
- wget -O atom-amd64.deb https://atom.io/download/deb
8+
# - sudo apt-get update # Cut out until wget is fixed on the containers
79
- sudo dpkg --install atom-amd64.deb || true
810
- sudo apt-get -f install -y
11+
- atom -v
12+
- apm -v
13+
- apm install
914
test:
1015
override:
1116
- npm run lint

package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linter-eslint",
33
"main": "./lib/main",
44
"activationCommands": [],
5-
"version": "5.2.4",
5+
"version": "5.2.5",
66
"description": "Lint JavaScript on the fly, using ESLint",
77
"repository": "https://github.com/AtomLinter/linter-eslint.git",
88
"license": "MIT",
@@ -28,8 +28,7 @@
2828
"babel-eslint": "^4.1.6",
2929
"babel-preset-steelbrain": "^1.0.0",
3030
"babel-preset-steelbrain-legacy": "^1.0.0",
31-
"eslint-config-airbnb": "latest",
32-
"eslint-config-steelbrain": "latest",
31+
"eslint-config-airbnb": "^1.0.2",
3332
"eslint-plugin-import": "^0.11.0",
3433
"eslint-plugin-react": "^3.10.0",
3534
"shelljs": "^0.5.3"
@@ -45,16 +44,21 @@
4544
}
4645
},
4746
"eslintConfig": {
48-
"extends": "steelbrain",
4947
"rules": {
5048
"no-empty": 0,
5149
"no-console": 0,
5250
"no-new": 0,
51+
"no-extra-semi": 1,
52+
"semi": 0,
53+
"func-names": 0,
54+
"strict": [0, "never"],
55+
"comma-dangle": 0,
5356
"semi": [
5457
2,
5558
"never"
5659
]
5760
},
61+
"extends": "airbnb/base",
5862
"parser": "babel-eslint",
5963
"globals": {
6064
"atom": "true"

0 commit comments

Comments
 (0)