rsnext/packages/eslint-plugin-next/lib/index.js

15 lines
293 B
JavaScript
Raw Normal View History

module.exports = {
rules: {
'no-css-tags': require('./rules/no-css-tags'),
'no-sync-scripts': require('./rules/no-sync-scripts'),
},
configs: {
recommended: {
rules: {
'@next/next/no-css-tags': 1,
'@next/next/no-sync-scripts': 1,
},
},
},
}