A collection of Doist ESLint rules.
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-doist:
npm install eslint-plugin-doist --save-devAdd doist to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"@doist/doist"
]
}Enforce only string literals as arguments to our i18n helpers _().
Enforce naming conventions when importing certain file types using ES6 modules.
Enforce only string literals as arguments to our static deployment tool $static_path.
Use generator-eslint:
yo eslint:rule
Stick to the ESLint recomendations regarding working with rules and working with plugins.