Skip to content

Commit

Permalink
feat(#1): disable lint for some line
Browse files Browse the repository at this point in the history
  • Loading branch information
t.chelebi committed Sep 4, 2023
1 parent 5fb544b commit 8eb346c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions craco.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const path = require('path');
const eslint = require('./.eslintrc');
const LocalizationGenerator = require('./scripts/localizationGenerator');

// eslint-disable-next-line
module.exports = function () {
const localizationGenerator = new LocalizationGenerator();
localizationGenerator.generateLocalizationFile();
Expand Down
1 change: 1 addition & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ function App() {

const click = () => {
setTimeout(() => {
// eslint-disable-next-line
console.log('done');
}, 2000);
};
Expand Down

0 comments on commit 8eb346c

Please sign in to comment.