eslint-plugin-san
Version:
Official ESLint plugin for San
26 lines (24 loc) • 887 B
JavaScript
/**
* @file plugin:san/strongly-recommended
*/
module.exports = {
extends: require.resolve('./essential'),
rules: {
'san/boolean-value': 'warn',
'san/attribute-hyphenation': 'warn',
'san/html-closing-bracket-newline': 'warn',
'san/html-closing-bracket-spacing': 'warn',
'san/html-end-tags': 'warn',
'san/html-quotes': 'warn',
'san/html-self-closing': 'warn',
'san/max-attributes-per-line': 'warn',
'san/multiline-html-element-content-newline': 'warn',
'san/mustache-interpolation-spacing': 'warn',
'san/no-multi-spaces': 'warn',
'san/no-spaces-around-equal-signs-in-attribute': 'warn',
'san/no-template-shadow': 'warn',
'san/one-component-per-file': 'warn',
'san/singleline-html-element-content-newline': 'warn',
'san/html-indent': 'warn'
}
};