Remove usused eslint files
This commit is contained in:
parent
309eff1654
commit
58a6b26475
@ -1,4 +0,0 @@
|
|||||||
node_modules
|
|
||||||
/built
|
|
||||||
/.eslintrc.js
|
|
||||||
/@types/**/*
|
|
@ -1,32 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
parserOptions: {
|
|
||||||
tsconfigRootDir: __dirname,
|
|
||||||
project: ['./tsconfig.json'],
|
|
||||||
},
|
|
||||||
extends: [
|
|
||||||
'../shared/.eslintrc.js',
|
|
||||||
],
|
|
||||||
rules: {
|
|
||||||
'import/order': ['warn', {
|
|
||||||
'groups': ['builtin', 'external', 'internal', 'parent', 'sibling', 'index', 'object', 'type'],
|
|
||||||
'pathGroups': [
|
|
||||||
{
|
|
||||||
'pattern': '@/**',
|
|
||||||
'group': 'external',
|
|
||||||
'position': 'after'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
}],
|
|
||||||
'no-restricted-globals': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
'name': '__dirname',
|
|
||||||
'message': 'Not in ESModule. Use `import.meta.url` instead.'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'name': '__filename',
|
|
||||||
'message': 'Not in ESModule. Use `import.meta.url` instead.'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
};
|
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable key-spacing */
|
|
||||||
import { emojiRegex } from "./emoji-regex.js";
|
import { emojiRegex } from "./emoji-regex.js";
|
||||||
import { fetchMeta } from "./fetch-meta.js";
|
import { fetchMeta } from "./fetch-meta.js";
|
||||||
import { Emojis } from "@/models/index.js";
|
import { Emojis } from "@/models/index.js";
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint:disable:quotemark indent */
|
|
||||||
const id_v1 = {
|
const id_v1 = {
|
||||||
"@context": {
|
"@context": {
|
||||||
id: "@id",
|
id: "@id",
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
parserOptions: {
|
|
||||||
tsconfigRootDir: __dirname,
|
|
||||||
project: ['./tsconfig.json'],
|
|
||||||
},
|
|
||||||
extends: ['../.eslintrc.cjs'],
|
|
||||||
env: {
|
|
||||||
node: true,
|
|
||||||
mocha: true,
|
|
||||||
},
|
|
||||||
};
|
|
@ -1,84 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
env: {
|
|
||||||
'node': false,
|
|
||||||
},
|
|
||||||
parser: 'vue-eslint-parser',
|
|
||||||
parserOptions: {
|
|
||||||
'parser': '@typescript-eslint/parser',
|
|
||||||
tsconfigRootDir: __dirname,
|
|
||||||
project: ['./tsconfig.json'],
|
|
||||||
extraFileExtensions: ['.vue'],
|
|
||||||
},
|
|
||||||
extends: [
|
|
||||||
'../shared/.eslintrc.js',
|
|
||||||
'plugin:vue/vue3-recommended',
|
|
||||||
],
|
|
||||||
rules: {
|
|
||||||
'@typescript-eslint/no-empty-interface': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
'allowSingleExtends': true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
// window の禁止理由: グローバルスコープと衝突し、予期せぬ結果を招くため
|
|
||||||
// e の禁止理由: error や event など、複数のキーワードの頭文字であり分かりにくいため
|
|
||||||
'id-denylist': ['error', 'window', 'e'],
|
|
||||||
'no-shadow': ['warn'],
|
|
||||||
'vue/attributes-order': ['error', {
|
|
||||||
'alphabetical': false,
|
|
||||||
}],
|
|
||||||
'vue/no-use-v-if-with-v-for': ['error', {
|
|
||||||
'allowUsingIterationVar': false,
|
|
||||||
}],
|
|
||||||
'vue/no-ref-as-operand': 'error',
|
|
||||||
'vue/no-multi-spaces': ['error', {
|
|
||||||
'ignoreProperties': false,
|
|
||||||
}],
|
|
||||||
'vue/no-v-html': 'error',
|
|
||||||
'vue/order-in-components': 'error',
|
|
||||||
'vue/html-indent': ['warn', 'tab', {
|
|
||||||
'attribute': 1,
|
|
||||||
'baseIndent': 0,
|
|
||||||
'closeBracket': 0,
|
|
||||||
'alignAttributesVertically': true,
|
|
||||||
'ignores': [],
|
|
||||||
}],
|
|
||||||
'vue/html-closing-bracket-spacing': ['warn', {
|
|
||||||
'startTag': 'never',
|
|
||||||
'endTag': 'never',
|
|
||||||
'selfClosingTag': 'never',
|
|
||||||
}],
|
|
||||||
'vue/multi-word-component-names': 'warn',
|
|
||||||
'vue/require-v-for-key': 'warn',
|
|
||||||
'vue/no-unused-components': 'warn',
|
|
||||||
'vue/valid-v-for': 'warn',
|
|
||||||
'vue/return-in-computed-property': 'warn',
|
|
||||||
'vue/no-setup-props-destructure': 'warn',
|
|
||||||
'vue/max-attributes-per-line': 'off',
|
|
||||||
'vue/html-self-closing': 'off',
|
|
||||||
'vue/singleline-html-element-content-newline': 'off',
|
|
||||||
},
|
|
||||||
globals: {
|
|
||||||
// Node.js
|
|
||||||
'module': false,
|
|
||||||
'require': false,
|
|
||||||
'__dirname': false,
|
|
||||||
|
|
||||||
// Vue
|
|
||||||
'$$': false,
|
|
||||||
'$ref': false,
|
|
||||||
'$shallowRef': false,
|
|
||||||
'$computed': false,
|
|
||||||
|
|
||||||
// Misskey
|
|
||||||
'_DEV_': false,
|
|
||||||
'_LANGS_': false,
|
|
||||||
'_VERSION_': false,
|
|
||||||
'_ENV_': false,
|
|
||||||
'_PERF_PREFIX_': false,
|
|
||||||
'_DATA_TRANSFER_DRIVE_FILE_': false,
|
|
||||||
'_DATA_TRANSFER_DRIVE_FOLDER_': false,
|
|
||||||
'_DATA_TRANSFER_DECK_COLUMN_': false,
|
|
||||||
},
|
|
||||||
};
|
|
5
packages/client/.vscode/settings.json
vendored
5
packages/client/.vscode/settings.json
vendored
@ -3,9 +3,4 @@
|
|||||||
"path-intellisense.mappings": {
|
"path-intellisense.mappings": {
|
||||||
"@": "${workspaceRoot}/packages/client/src/"
|
"@": "${workspaceRoot}/packages/client/src/"
|
||||||
},
|
},
|
||||||
"eslint.validate": [
|
|
||||||
"javascript",
|
|
||||||
"javascriptreact",
|
|
||||||
"vue"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,6 @@
|
|||||||
},
|
},
|
||||||
"compileOnSave": false,
|
"compileOnSave": false,
|
||||||
"include": [
|
"include": [
|
||||||
".eslintrc.js",
|
|
||||||
"./**/*.ts",
|
"./**/*.ts",
|
||||||
"./**/*.vue"
|
"./**/*.vue"
|
||||||
]
|
]
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
env: {
|
|
||||||
"node": false
|
|
||||||
},
|
|
||||||
parserOptions: {
|
|
||||||
"parser": "@typescript-eslint/parser",
|
|
||||||
tsconfigRootDir: __dirname,
|
|
||||||
//project: ['./tsconfig.json'],
|
|
||||||
},
|
|
||||||
extends: [
|
|
||||||
//"../shared/.eslintrc.js",
|
|
||||||
],
|
|
||||||
globals: {
|
|
||||||
"require": false,
|
|
||||||
"_DEV_": false,
|
|
||||||
"_LANGS_": false,
|
|
||||||
"_VERSION_": false,
|
|
||||||
"_ENV_": false,
|
|
||||||
"_PERF_PREFIX_": false,
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user