nordtheme.vim/lint-staged.config.js
Sven Greb f725ac643a More nordtheme organization migration adapations
To align with the latest Nord project standards more changes have been
made for as part of the `nordtheme` organization migration.

GH-335
2023-04-10 17:40:40 +02:00

16 lines
586 B
JavaScript

/*
* Copyright (c) 2016-present Sven Greb <development@svengreb.de>
* This source code is licensed under the MIT license found in the license file.
*/
/**
* Configurations for lint-staged.
* @see https://github.com/okonet/lint-staged#configuration
*/
module.exports = {
"*.json": "prettier --check --ignore-unknown --no-editorconfig",
"*.js": ["eslint", "prettier --check --ignore-unknown --no-editorconfig"],
"*.md": ["remark --no-stdout", "prettier --check --ignore-unknown --no-editorconfig"],
".husky/pre-*": "prettier --check --ignore-unknown --no-editorconfig",
};