mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
2df3caa159
refs 13d3d0cde6
- we removed cypress in the referenced commit so this is no longer
needed
21 lines
592 B
JavaScript
21 lines
592 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'react-app',
|
|
'plugin:ghost/browser'
|
|
],
|
|
plugins: [
|
|
'ghost',
|
|
'tailwindcss'
|
|
],
|
|
rules: {
|
|
'tailwindcss/classnames-order': 'error',
|
|
'tailwindcss/enforces-negative-arbitrary-values': 'off',
|
|
'tailwindcss/enforces-shorthand': 'warn',
|
|
'tailwindcss/migration-from-tailwind-2': 'warn',
|
|
'tailwindcss/no-arbitrary-value': 'off',
|
|
'tailwindcss/no-custom-classname': 'off',
|
|
'tailwindcss/no-contradicting-classname': 'error'
|
|
}
|
|
};
|