Skip to content

Commit

Permalink
fix: replace no-sync with node/no-sync rule
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguttandin committed Apr 1, 2020
1 parent 661686e commit c040318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module.js
Expand Up @@ -89,7 +89,6 @@ module.exports = {
'no-return-await': 'error',
'no-setter-return': 'error',
'no-shadow': 'error',
'no-sync': 'error',
'no-throw-literal': 'error',
'no-trailing-spaces': 'error',
'no-undef': 'error',
Expand All @@ -104,6 +103,7 @@ module.exports = {
'node/no-callback-literal': 'error',
'node/no-deprecated-api': [ 'error', { ignoreGlobalItems: [ 'require.extensions' ] } ],
'node/no-missing-require': 'error',
'node/no-sync': 'error',
'node/prefer-global/buffer': [ 'error', 'never' ],
'node/prefer-global/console': 'error',
'node/prefer-global/process': [ 'error', 'never' ],
Expand Down

0 comments on commit c040318

Please sign in to comment.