Skip to content

Commit

Permalink
add eslint rule for platform dependent linebreaks
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisvang committed Oct 30, 2024
1 parent 70acf75 commit aeaa644
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ module.exports = {
'max-classes-per-file': 'off',
'no-use-before-define': 'off',
'vue/multi-word-component-names': 'off',
'linebreak-style': ['error', (process.platform === 'win32' ? 'windows' : 'unix')]
},
parserOptions: {
parser: '@typescript-eslint/parser',
Expand Down

0 comments on commit aeaa644

Please sign in to comment.