@@ -49,15 +49,15 @@ export default function createConfig({
49
49
50
50
const projectServiceConfigs : ConfigArray = [
51
51
{
52
- name : 'vue- typescript/skip-type-checking-for-js-files' ,
52
+ name : '@ vue/ typescript/skip-type-checking-for-js-files' ,
53
53
files : [ '**/*.js' , '**/*.jsx' , '**/*.cjs' , '**/*.mjs' ] ,
54
54
...tseslint . configs . disableTypeChecked ,
55
55
} ,
56
56
]
57
57
58
58
if ( otherVueFiles . length > 0 ) {
59
59
projectServiceConfigs . push ( {
60
- name : 'vue- typescript/skip-type-checking-for-vue-files-without-ts' ,
60
+ name : '@ vue/ typescript/skip-type-checking-for-vue-files-without-ts' ,
61
61
files : otherVueFiles . map ( escapePathForGlob ) ,
62
62
...tseslint . configs . disableTypeChecked ,
63
63
rules : {
@@ -100,7 +100,7 @@ export default function createConfig({
100
100
101
101
if ( needsTypeAwareLinting ) {
102
102
projectServiceConfigs . push ( {
103
- name : 'vue- typescript/default-project-service-for-ts-files' ,
103
+ name : '@ vue/ typescript/default-project-service-for-ts-files' ,
104
104
files : [ '**/*.ts' , '**/*.tsx' , '**/*.mts' ] ,
105
105
languageOptions : {
106
106
parser : tseslint . parser ,
@@ -113,7 +113,7 @@ export default function createConfig({
113
113
114
114
if ( vueFilesWithScriptTs . length > 0 ) {
115
115
projectServiceConfigs . push ( {
116
- name : 'vue- typescript/default-project-service-for-vue-files' ,
116
+ name : '@ vue/ typescript/default-project-service-for-vue-files' ,
117
117
files : vueFilesWithScriptTs . map ( escapePathForGlob ) ,
118
118
languageOptions : {
119
119
parser : vueParser ,
@@ -128,7 +128,7 @@ export default function createConfig({
128
128
129
129
// Vue's own typing inevitably contains some `any`s, so some of the `no-unsafe-*` rules can't be used.
130
130
projectServiceConfigs . push ( {
131
- name : 'vue- typescript/type-aware-rules-in-conflit-with-vue' ,
131
+ name : '@ vue/ typescript/type-aware-rules-in-conflit-with-vue' ,
132
132
files : [ '**/*.ts' , '**/*.tsx' , '**/*.mts' , '**/*.vue' ] ,
133
133
rules : {
134
134
'@typescript-eslint/no-unsafe-argument' : 'off' ,
@@ -165,7 +165,7 @@ export default function createConfig({
165
165
...pluginVue . configs [ 'flat/base' ] ,
166
166
167
167
{
168
- name : 'vue- typescript/setup' ,
168
+ name : '@ vue/ typescript/setup' ,
169
169
files : [ '*.vue' , '**/*.vue' ] ,
170
170
languageOptions : {
171
171
parser : vueParser ,
0 commit comments