Skip to content

Commit 8f520af

Browse files
authoredNov 16, 2022
feat: improve Nuxt3 compatibility (nuxt#236)
close nuxt#231 close nuxt#216
1 parent 8fce580 commit 8f520af

File tree

6 files changed

+613
-260
lines changed

6 files changed

+613
-260
lines changed
 

‎package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
"test": "yarn lint && vitest run"
1010
},
1111
"devDependencies": {
12-
"eslint": "^8.23.0",
12+
"eslint": "^8.27.0",
1313
"lerna": "^5.4.3",
14-
"vitest": "^0.22.1"
14+
"vitest": "^0.25.1",
15+
"vue": "^3.2.45"
1516
},
1617
"packageManager": "yarn@3.2.3"
1718
}

‎packages/eslint-config-typescript/index.js

+23-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
module.exports = {
22
extends: [
3-
'@nuxtjs'
3+
'@nuxtjs',
4+
'plugin:@typescript-eslint/recommended'
5+
],
6+
plugins: [
7+
'@typescript-eslint'
48
],
5-
plugins: ['@typescript-eslint'],
69
parser: 'vue-eslint-parser',
710
parserOptions: {
811
parser: '@typescript-eslint/parser'
@@ -14,7 +17,24 @@ module.exports = {
1417
'no-unused-vars': 'off',
1518

1619
// https://github.com/typescript-eslint/typescript-eslint/blob/1cf9243/docs/getting-started/linting/FAQ.md#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors
17-
'no-undef': 'off'
20+
'no-undef': 'off',
21+
22+
// For easier migration
23+
'@typescript-eslint/ban-ts-comment': 'off',
24+
'@typescript-eslint/consistent-indexed-object-style': 'off',
25+
'@typescript-eslint/naming-convention': 'off',
26+
'@typescript-eslint/explicit-function-return-type': 'off',
27+
'@typescript-eslint/explicit-member-accessibility': 'off',
28+
'@typescript-eslint/no-explicit-any': 'off',
29+
'@typescript-eslint/parameter-properties': 'off',
30+
'@typescript-eslint/no-empty-interface': 'off',
31+
'@typescript-eslint/ban-ts-ignore': 'off',
32+
'@typescript-eslint/no-empty-function': 'off',
33+
'@typescript-eslint/no-non-null-assertion': 'off',
34+
'@typescript-eslint/explicit-module-boundary-types': 'off',
35+
'@typescript-eslint/ban-types': 'off',
36+
'@typescript-eslint/no-namespace': 'off',
37+
'@typescript-eslint/triple-slash-reference': 'off'
1838
},
1939
settings: {
2040
'import/parsers': {

‎packages/eslint-config-typescript/package.json

+8-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,16 @@
99
],
1010
"dependencies": {
1111
"@nuxtjs/eslint-config": "^11.0.0",
12-
"@typescript-eslint/eslint-plugin": "^5.36.1",
13-
"@typescript-eslint/parser": "^5.36.1",
14-
"eslint-import-resolver-typescript": "^3.5.0",
15-
"eslint-plugin-import": "^2.26.0"
12+
"@typescript-eslint/eslint-plugin": "^5.42.1",
13+
"@typescript-eslint/parser": "^5.42.1",
14+
"eslint-import-resolver-typescript": "^3.5.2",
15+
"eslint-plugin-import": "^2.26.0",
16+
"eslint-plugin-vue": "^9.7.0"
1617
},
1718
"peerDependencies": {
1819
"eslint": "^8.23.0"
20+
},
21+
"devDependencies": {
22+
"typescript": "^4.8.4"
1923
}
2024
}

‎packages/eslint-config/index.js

+31-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
1+
const { getPackageInfoSync } = require('local-pkg')
2+
3+
const nuxt = getPackageInfoSync('nuxt')
4+
const isNuxt2 = nuxt && nuxt.version && nuxt.version.startsWith('2.')
5+
16
module.exports = {
27
env: {
38
browser: true,
4-
node: true
9+
node: true,
10+
...(isNuxt2 ? {} : { es6: true })
511
},
612
extends: [
713
'standard',
814
'plugin:import/errors',
915
'plugin:import/warnings',
10-
'plugin:vue/recommended'
16+
isNuxt2
17+
? 'plugin:vue/recommended'
18+
: 'plugin:vue/vue3-recommended'
1119
],
1220
plugins: [
1321
'unicorn',
@@ -125,7 +133,10 @@ module.exports = {
125133
// Maximum 5 attributes per line instead of one
126134
'vue/max-attributes-per-line': ['error', {
127135
singleline: 5
128-
}]
136+
}],
137+
138+
// v-model argument is supported in Vue3
139+
'vue/no-v-model-argument': isNuxt2 ? 'error' : 'off'
129140
},
130141
overrides: [
131142
{
@@ -136,8 +147,24 @@ module.exports = {
136147
'**/error.{js,ts,vue}'
137148
],
138149
rules: {
139-
'vue/multi-word-component-names': 'off'
150+
'vue/multi-word-component-names': 'off',
151+
// Pages and layouts are required to have a single root element
152+
'vue/no-multiple-template-root': 'error'
140153
}
141154
}
155+
],
156+
reportUnusedDisableDirectives: true,
157+
ignorePatterns: [
158+
'*.min.*',
159+
'*.d.ts',
160+
'dist',
161+
'LICENSE*',
162+
'output',
163+
'coverage',
164+
'public',
165+
'package-lock.json',
166+
'pnpm-lock.yaml',
167+
'yarn.lock',
168+
'__snapshots__'
142169
]
143170
}

‎packages/eslint-config/package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@
1010
"dependencies": {
1111
"eslint-config-standard": "^17.0.0",
1212
"eslint-plugin-import": "^2.26.0",
13-
"eslint-plugin-n": "^15.2.5",
13+
"eslint-plugin-n": "^15.5.1",
1414
"eslint-plugin-node": "^11.1.0",
15-
"eslint-plugin-promise": "^6.0.1",
16-
"eslint-plugin-unicorn": "^43.0.2",
17-
"eslint-plugin-vue": "^9.4.0"
15+
"eslint-plugin-promise": "^6.1.1",
16+
"eslint-plugin-unicorn": "^44.0.2",
17+
"eslint-plugin-vue": "^9.7.0",
18+
"local-pkg": "^0.4.2"
1819
},
1920
"peerDependencies": {
2021
"eslint": "^8.23.0"

‎yarn.lock

+543-243
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.