Skip to content

Commit 5238a15

Browse files
refactor: next (#501)
1 parent 99c6500 commit 5238a15

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+16477
-15659
lines changed

.eslintrc.js

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
module.exports = {
22
root: true,
3-
extends: ['@webpack-contrib/eslint-config-webpack', 'prettier'],
3+
extends: ["@webpack-contrib/eslint-config-webpack", "prettier"],
44
overrides: [
55
{
6-
files: ['src/runtime/**/*.js'],
6+
files: ["src/runtime/**/*.js"],
77
env: {
88
browser: true,
99
node: true,
1010
},
1111
globals: {
12-
__webpack_nonce__: 'readonly',
12+
__webpack_nonce__: "readonly",
1313
},
1414
rules: {
15-
'no-underscore-dangle': 'off',
16-
'no-plusplus': 'off',
17-
'consistent-return': 'off',
18-
'no-param-reassign': 'off',
15+
"no-underscore-dangle": "off",
16+
"no-plusplus": "off",
17+
"consistent-return": "off",
18+
"no-param-reassign": "off",
1919
camelcase: [
20-
'error',
21-
{ properties: 'never', allow: ['__webpack_nonce__'] },
20+
"error",
21+
{ properties: "never", allow: ["__webpack_nonce__"] },
2222
],
2323
// avoid unnecessary `babel` helpers
24-
'prefer-destructuring': 'off',
25-
'prefer-rest-params': 'off',
24+
"prefer-destructuring": "off",
25+
"prefer-rest-params": "off",
2626
},
2727
},
2828
],

.github/workflows/nodejs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
strategy:
5656
matrix:
5757
os: [ubuntu-latest, windows-latest, macos-latest]
58-
node-version: [10.x, 12.x, 14.x]
59-
webpack-version: [4, latest]
58+
node-version: [12.x, 14.x, 16.x]
59+
webpack-version: [latest]
6060

6161
runs-on: ${{ matrix.os }}
6262

.husky/pre-commit

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
21
#!/bin/sh
32
. "$(dirname "$0")/_/husky.sh"
43

5-
npx lint-staged
4+
npx --no-install lint-staged

.prettierrc.js

-1
This file was deleted.

0 commit comments

Comments
 (0)