Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen committed Feb 28, 2024
1 parent 94f5f93 commit a41e010
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ module.exports = getESLintConfig({
{
files: ['**/*.ts', '**/*.tsx', '**/*.d.ts'],
rules: {
'quotes': 0, // handled by prettier
'indent': 0, // handled by prettier

// typescript-eslint 6.0
'@typescript-eslint/no-unsafe-argument': 0,
'@typescript-eslint/no-redundant-type-constituents': 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

/* eslint-disable quotes */

import test from 'tape-promise/tape';
import {parseShaderCompilerLog} from '@luma.gl/webgl/adapter/helpers/parse-shader-compiler-log';

Expand Down

0 comments on commit a41e010

Please sign in to comment.