1
1
mirror of https://github.com/primer/css.git synced 2024-12-02 07:53:06 +03:00
css/stylelint.config.js

12 lines
319 B
JavaScript
Raw Normal View History

2019-10-15 02:24:34 +03:00
const currentVersion = process.env.PRIMER_VERSION || require('./package.json').version
module.exports = {
extends: ['stylelint-config-primer'],
2019-10-15 02:24:34 +03:00
plugins: ['./lib/stylelint-todo'],
syntax: 'scss',
rules: {
2019-10-15 02:24:34 +03:00
'primer/no-override': false,
'primer-css/TODO': [true, {currentVersion, severity: 'error'}]
}
}