This package includes the shareable ESLint configuration used by SF-Tech.
Please refer to its documentation:
All configurations are based on the Airbnb JavaScript Style Guide(中文) and a set of additions.
If you want to use this ESLint configuration in your project, you can install it with the following steps.
First, install this package, ESLint and the necessary plugins.
yarn add eslint-config-sf-js -D
Then create a file named .eslintrc
with following contents in the root folder of your project:
{
"extends": "sf-js"
}
That's it! You can override the settings from eslint-config-sf-js
by editing the .eslintrc
file. Learn more about configuring ESLint on the ESLint website.
If you want to enable even more accessibility rules, you can create an .eslintrc
file in the root of your project with this content:
{
"extends": ["sf-js", "sf-js", "sf-vue", "sf-ts", "sf-mp"],
"plugins": ["sf-plugin"]
}
MIT