html-eslint
html-eslint copied to clipboard
Include `parser` and `plugins` settings into `recommended` config?
// recommended.js
module.exports = {
parser: '@html-eslint/parser',
plugins: ['@html-eslint'],
rules: {
// ...
},
};
Not sure why they are not included by default
@JounQin Agree! We should include the parser and plugin!
Does it mean this
...
{
"extends": [
"plugin:@html-eslint/recommended"
],
"files": ["src/**/*.html"],
"parser": "@html-eslint/parser",
"plugins": [
"@html-eslint"
],
"rules": {
...
}
}
...
is going to be replace with
...
{
"extends": [
"plugin:@html-eslint/recommended"
],
"files": ["src/**/*.html"],
"rules": {
...
}
}
...
?