mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -05:00
2daf461143
- Allow using both Prettier and StandardJS at the same time by removing JAVASCRIPT_DEFAULT_STYLE and TYPESCRIPT_DEFAULT_STYLE configuration variables. They create a confusing corner case that Super-linter already handles with its core logic that's in place to enable and disable linters. - Document VALIDATE_JAVASCRIPT_PRETTIER and VALIDATE_TYPESCRIPT_PRETTIER because they were missing from the README. - Add missing TYPESCRIPT_PRETTIER tests.
7 lines
289 B
JavaScript
7 lines
289 B
JavaScript
module.exports = {
|
|
extends: ["@commitlint/config-conventional"],
|
|
helpUrl: "https://www.conventionalcommits.org/",
|
|
// We need this until https://github.com/dependabot/dependabot-core/issues/2445
|
|
// is resolved.
|
|
ignores: [(msg) => /Signed-off-by: dependabot\[bot]/m.test(msg)],
|
|
};
|