We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Please help. I have no idea how to add "svelte3/ignore-styles" to settings in .eslintrc.js file I need a function?
this do not work: settings: {"svelte3/ignore-styles": true}
i need to disable all styles - i use svelte-preprocess with stylus
The text was updated successfully, but these errors were encountered:
Yes as described here this needs to be a function that returns true or false. See also #43.
Sorry, something went wrong.
Change .eslintrc to .eslintrc.js and wrap the json inside module.exports, then you can use the rule as below -
module.exports = { "rules" : { }, "settings": { "svelte3/ignore-styles": () => true } }
temporary fix bug of eslint-plugin-svelte3
e72e3d9
see sveltejs/eslint-plugin-svelte3#10 and sveltejs/eslint-plugin-svelte3#55
use SCSS (#26)
81af8a0
* add Dart Sass * add the default layout component * temporary fix bug of eslint-plugin-svelte3 see sveltejs/eslint-plugin-svelte3#10 and sveltejs/eslint-plugin-svelte3#55
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Please help.
I have no idea how to add "svelte3/ignore-styles" to settings in .eslintrc.js file
I need a function?
this do not work:
settings: {"svelte3/ignore-styles": true}
i need to disable all styles - i use svelte-preprocess with stylus
The text was updated successfully, but these errors were encountered: