-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make tsconfigRootDir
relative to the .eslintrc
file
#251
Comments
FYI: To workaround, rename your eslintrc into |
@ypresto Does not work for me. .eslintrc.js module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
env: {
es6: true,
node: true,
},
extends: ['plugin:@typescript-eslint/recommended', 'prettier/@typescript-eslint', 'plugin:prettier/recommended'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
project: './tsconfig.json',
tsconfigRootDir: __dirname,
},
rules: {
quotes: ['off'],
'no-process-env': ['warn'],
'no-var': ['warn'],
'sort-imports': ['warn'],
'func-style': ['error', 'expression'],
'prefer-arrow-callback': ['error'],
'@typescript-eslint/explicit-function-return-type': ['warn'],
'@typescript-eslint/await-thenable': ['warn'],
'@typescript-eslint/no-require-imports': ['warn'],
'@typescript-eslint/no-unnecessary-type-assertion': ['warn'],
'@typescript-eslint/prefer-string-starts-ends-with': ['warn'],
'@typescript-eslint/interface-name-prefix': ['off'],
'@typescript-eslint/explicit-member-accessibility': [
'warn',
{
accessibility: 'no-public',
},
],
'prettier/prettier': [
'warn',
{
semi: false,
trailingComma: 'es5',
singleQuote: true,
printWidth: 140,
tabWidth: 2,
arrowParens: 'always',
},
{
usePrettierrc: false,
},
],
},
} error:
|
the easy workaround for this is: module.exports = {
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname,
},
}; |
Here's my solution for a Google Cloud Functions project in VSCode in case it helps someone. My project has the usual structure for a functions project: the functions code and related configuration files are in a 'functions' subfolder of the project/workspace's root. The beginning of my .eslint.json...
This got it working properly in the IDE but broke command line invocations, so now my package.json includes this:
Which reverses the setting of 'tsconfigRootDir' in my eslintrc.json for the cmd line. [edit: though this solves the problem of this issue (for me, at least) it doesn't help with the location of eslintignore.] |
If I understand the question, this can be resolved at VSCode's ESLint plugin side
|
Revisiting this - there's nothing we can do here. I believe this is due to a few reasons:
For the above reasons, I doubt that ESLint will ever pass the config path for the above reasons. The simple workaround for this is to rename your config to module.exports = {
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname,
},
}; Unfortunately, if you want to use yaml or json format files, then you will have to ensure you run ESLint from the correct directory. |
I am linting my project from two places. Firstly, I run
eslint
in a shell as part of the CI process. This will have a current working directory that is the location of the.eslintrc
file.I also run the ESLint plugin in VS Code. The current working directory for this is the project root, which is not the same location.
If I set the
project
setting to betsconfig.json
, andtsconfigRootDir
to be.
then I can runeslint
from the shell. And if I settsconfigRootDir
to bepath/to/my/subproject
then I can use the VS code plugin. But there is no possible combination of options that let's both work.Furthermore,
tsconfigRootDir
seems to be entirely redundant anyway, because there is no combination ofproject
andtsconfigRootDir
that can't be just concatenated into theproject
field, like{ "project": "path/to/my/subproject/tsconfig.json" }
The text was updated successfully, but these errors were encountered: