Skip to content

Commit

Permalink
Run formatters after linters
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmeuli committed Dec 27, 2019
1 parent a97a632 commit cd96e8d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/linters/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ const Stylelint = require("./stylelint");
const SwiftLint = require("./swiftlint");

const linters = {
black: Black,
// Linters
eslint: ESLint,
flake8: Flake8,
gofmt: Gofmt,
prettier: Prettier,
stylelint: Stylelint,
swiftlint: SwiftLint,

// Formatters (should be run after linters)
black: Black,
gofmt: Gofmt,
prettier: Prettier,
};

module.exports = linters;

0 comments on commit cd96e8d

Please sign in to comment.