diff --git a/.eslintrc.js b/.eslintrc.js index 042525f..e0a12cd 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -13,7 +13,7 @@ module.exports = { plugins: ['@typescript-eslint'], rules: { indent: ['error', 2], - 'linebreak-style': ['error', 'windows'], + 'linebreak-style': ['error', 'unix'], quotes: ['error', 'single'], semi: ['error', 'always'] } diff --git a/.prettierignore b/.prettierignore index 1b8ac88..04168ef 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,3 +1,4 @@ # Ignore artifacts: build coverage +dist diff --git a/.prettierrc b/.prettierrc index c764145..1b10a54 100644 --- a/.prettierrc +++ b/.prettierrc @@ -6,5 +6,6 @@ "singleQuote": true, "printWidth": 100, "tabWidth": 2, - "useTabs": false + "useTabs": false, + "endOfLine": "lf" } \ No newline at end of file