Skip to content

Commit fd25022

Browse files
committed
misc updates and cleanup
1 parent 4b96e4a commit fd25022

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ node_modules
33
spec
44
linter_terraform_syntax.png
55
.git
6-
.travis.yml
76
.circleci
87
.github

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export default {
130130
'An error occurred during automatic formatting of a non-config file.',
131131
{
132132
detail: error.message,
133-
dismissable: true
133+
dismissable: true,
134134
}
135135
);
136136
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"atom-linter": "^10.0.0"
3232
},
3333
"devDependencies": {
34-
"eslint": "latest",
34+
"eslint": "^8.0",
3535
"eslint-config-airbnb-base": "latest",
3636
"eslint-plugin-import": "latest"
3737
},
@@ -42,7 +42,7 @@
4242
"error",
4343
{
4444
"ignore": [
45-
"pulsar"
45+
"atom"
4646
]
4747
}
4848
]
@@ -52,7 +52,7 @@
5252
"node": true
5353
},
5454
"globals": {
55-
"pulsar": false
55+
"atom": true
5656
}
5757
}
58-
}
58+
}

spec/.eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module.exports = {
22
globals: {
3-
waitsForPromise: true
3+
waitsForPromise: true,
44
},
55
env: {
66
jasmine: true,
77
atomtest: true,
8-
}
8+
},
99
};

0 commit comments

Comments
 (0)