mirror of
https://github.com/ProtonMail/WebClients.git
synced 2026-01-11 20:06:40 +00:00
12 lines
406 B
JavaScript
12 lines
406 B
JavaScript
/**
|
|
* @type {import('lint-staged').Configuration}
|
|
*/
|
|
export default {
|
|
'(*.ts|*.tsx|*.js)': [
|
|
'eslint --fix --max-warnings=0 --no-warn-ignored --flag v10_config_lookup_from_file',
|
|
'prettier --write',
|
|
],
|
|
'(*.scss|.css)': ['prettier --write', 'stylelint --fix'],
|
|
'(*.json|*.md|*.mdx|*.html|*.mjs|*.yml|*.svg)': 'prettier --write',
|
|
'package.json': 'sort-package-json',
|
|
};
|