mirror of
https://github.com/primer/css.git
synced 2024-11-30 01:04:04 +03:00
12 lines
319 B
JavaScript
12 lines
319 B
JavaScript
const currentVersion = process.env.PRIMER_VERSION || require('./package.json').version
|
|
|
|
module.exports = {
|
|
extends: ['stylelint-config-primer'],
|
|
plugins: ['./lib/stylelint-todo'],
|
|
syntax: 'scss',
|
|
rules: {
|
|
'primer/no-override': false,
|
|
'primer-css/TODO': [true, {currentVersion, severity: 'error'}]
|
|
}
|
|
}
|