Skip to content

Commit fcc61de

Browse files
committed
misc updates and cleanup
1 parent 82c8658 commit fcc61de

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ on:
1313

1414
jobs:
1515
lint:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-latest
1717
container: node:14-alpine
1818
steps:
1919
- name: checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: install dependencies
2222
run: npm install
2323
- name: lint source and spec

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
(Next)
2+
- fixture for ignore non gha config yaml
3+
14
### 1.0.2
25
- Add Config File config option.
36
- Stricter enforcement of only lint Github Actions config files.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
### Linter-Github-Actions
2-
32
Linter-Github-Actions aims to provide functional and robust `actionlint` linting functionality within Pulsar.
43

54
This package is now in maintenance mode. All feature requests and bug reports in the Github repository issue tracker will receive a response, and possibly also be implemented (especially bug fixes). However, active development on this package has ceased.

lib/main.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default {
2020
description: 'List of regular expressions matching to error messages you want to ignore.',
2121
default: [],
2222
items: {
23-
type: 'string'
23+
type: 'string',
2424
},
2525
},
2626
pyflakesPath: {
@@ -108,8 +108,7 @@ export default {
108108
},
109109
});
110110
});
111-
}
112-
catch (SyntaxError) {
111+
} catch (SyntaxError) {
113112
// if invalid json then the file is clean
114113
}
115114

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"atom-linter": "^10.0.0"
3333
},
3434
"devDependencies": {
35-
"eslint": "latest",
35+
"eslint": "^8.0",
3636
"eslint-config-airbnb-base": "latest",
3737
"eslint-plugin-import": "latest"
3838
},
@@ -53,7 +53,7 @@
5353
"node": true
5454
},
5555
"globals": {
56-
"pulsar": false
56+
"atom": true
5757
}
5858
}
59-
}
59+
}

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)