fix(a[[): readmi
This commit is contained in:
2
repo/0-tools-eslint/.gitignore
vendored
2
repo/0-tools-eslint/.gitignore
vendored
@@ -1,7 +1,5 @@
|
||||
/node_modules
|
||||
/dist
|
||||
|
||||
|
||||
|
||||
.env
|
||||
.DS_Store
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "3-class-complex-assistants",
|
||||
"name": "0-tools-eslint",
|
||||
"description": "",
|
||||
"version": "0.0.6",
|
||||
"version": "0.0.1",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
@@ -21,9 +21,8 @@
|
||||
"registry": "https://vniac.ru:4873"
|
||||
},
|
||||
"keywords": [
|
||||
"Logger",
|
||||
"helpers",
|
||||
"utils"
|
||||
"eslint",
|
||||
"tools"
|
||||
],
|
||||
"author": "vbuglov",
|
||||
"license": "ISC",
|
||||
@@ -31,11 +30,8 @@
|
||||
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
||||
"@typescript-eslint/parser": "^7.2.0",
|
||||
"eslint": "^8.57.0",
|
||||
"moment": "^2.30.1",
|
||||
"tsup": "^8.0.2",
|
||||
"typescript": "^5.4.2",
|
||||
"typescript-eslint": "^7.2.0",
|
||||
"vite": "^5.1.6",
|
||||
"vitest": "^1.4.0"
|
||||
"typescript-eslint": "^7.2.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1,9 @@
|
||||
import jsEslintConfig from './javascript-eslint-config.ts';
|
||||
import jsEslintConfig from './javascript-eslint-config';
|
||||
import tsEslintConfig from './typescript-eslint-config';
|
||||
import vueEslintConfig from "./vue-eslint-config";
|
||||
|
||||
export {
|
||||
jsEslintConfig,
|
||||
tsEslintConfig,
|
||||
vueEslintConfig,
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
module.exports = {
|
||||
|
||||
const jsEslintConfig = {
|
||||
extends: [
|
||||
"eslint:recommended",
|
||||
],
|
||||
@@ -8,3 +9,5 @@ module.exports = {
|
||||
"no-mixed-spaces-and-tabs": "error",
|
||||
}
|
||||
}
|
||||
|
||||
export default jsEslintConfig;
|
||||
@@ -1,4 +1,4 @@
|
||||
let tsEslintConfig = {
|
||||
const tsEslintConfig = {
|
||||
extends: [
|
||||
'eslint:recommended',
|
||||
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
vueEslintConfig = {
|
||||
const vueEslintConfig = {
|
||||
extends: [
|
||||
"eslint:recommended",
|
||||
"plugin:vue/vue3-recommended",
|
||||
@@ -28,3 +28,5 @@ vueEslintConfig = {
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
||||
export default vueEslintConfig;
|
||||
1619
repo/0-tools-eslint/yarn.lock
Normal file
1619
repo/0-tools-eslint/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user