build: refactor linting setup

This commit is contained in:
iCrawl
2023-08-24 06:43:23 +02:00
parent 788888ab9a
commit fb81f7befb
103 changed files with 1546 additions and 972 deletions

View File

@@ -74,19 +74,19 @@
"@babel/preset-typescript": "^7.22.5",
"@favware/cliff-jumper": "^2.1.1",
"@microsoft/api-extractor": "^7.36.4",
"@types/jest": "^29.5.3",
"@types/node": "16.18.41",
"@types/jest": "^29.5.4",
"@types/node": "16.18.44",
"cross-env": "^7.0.3",
"esbuild-plugin-version-injector": "^1.2.0",
"eslint": "^8.47.0",
"eslint-config-neon": "^0.1.54",
"eslint-config-neon": "^0.1.56",
"eslint-formatter-pretty": "^5.0.0",
"jest": "^29.6.3",
"jest-websocket-mock": "^2.4.1",
"mock-socket": "^9.2.1",
"prettier": "^3.0.2",
"tsup": "^7.2.0",
"turbo": "^1.10.12",
"turbo": "^1.10.13",
"tweetnacl": "^1.0.3",
"typescript": "^5.1.6"
},

View File

@@ -4,18 +4,5 @@
"compilerOptions": {
"allowJs": true
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.mjs",
"**/*.jsx",
"**/*.test.ts",
"**/*.test.js",
"**/*.test.mjs",
"**/*.spec.ts",
"**/*.spec.js",
"**/*.spec.mjs"
],
"exclude": []
"include": ["*.ts", "*.tsx", "*.js", "*.cjs", "*.mjs", "src", "scripts", "__tests__", "__mocks__"]
}