Ghost/apps/comments-ui/.eslintrc.js
Daniel Lockyer 2df3caa159 Removed use of Cypress eslint plugin
refs 13d3d0cde6

- we removed cypress in the referenced commit so this is no longer
  needed
2023-06-21 17:18:00 +02:00

22 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'
}
};