2022-08-30 16:53:35 +03:00
|
|
|
/* eslint-env node */
|
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
extends: [
|
|
|
|
'react-app',
|
2022-09-09 18:27:32 +03:00
|
|
|
'plugin:ghost/browser',
|
|
|
|
'plugin:cypress/recommended'
|
2022-08-30 16:53:35 +03:00
|
|
|
],
|
|
|
|
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'
|
|
|
|
}
|
|
|
|
};
|