-
Notifications
You must be signed in to change notification settings - Fork 628
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
635 additions
and
443 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
import eslint from '@eslint/js'; | ||
import tseslint from 'typescript-eslint'; | ||
import tsParser from '@typescript-eslint/parser'; | ||
import prettierConfig from 'eslint-plugin-prettier/recommended'; | ||
import globals from 'globals'; | ||
import vitest from 'eslint-plugin-vitest'; | ||
|
||
delete globals.browser['AudioWorkletGlobalScope ']; | ||
|
||
/** | ||
* @type {import('eslint').Linter.Config[]} | ||
*/ | ||
export default [ | ||
{ | ||
ignores: ['build/**', 'coverage/**'], | ||
}, | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommendedTypeChecked, | ||
{ | ||
languageOptions: { | ||
parserOptions: { | ||
project: './tsconfig.eslint.json', | ||
tsconfigRootDir: import.meta.dirname, | ||
}, | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.ts'], | ||
plugins: { | ||
vitest, | ||
}, | ||
languageOptions: { | ||
parser: tsParser, | ||
globals: { | ||
...globals.browser, | ||
}, | ||
}, | ||
settings: { | ||
vitest: { | ||
typecheck: true, | ||
}, | ||
}, | ||
rules: { | ||
...vitest.configs.recommended.rules, | ||
'prettier/prettier': 'warn', | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
'@typescript-eslint/no-explicit-any': 'warn', | ||
'@typescript-eslint/prefer-for-of': 'error', | ||
'@typescript-eslint/no-for-in-array': 'error', | ||
'@typescript-eslint/no-require-imports': 'error', | ||
'@typescript-eslint/no-parameter-properties': 'off', | ||
'@typescript-eslint/no-unused-vars': [ | ||
'error', | ||
{ | ||
vars: 'all', | ||
args: 'after-used', | ||
ignoreRestSiblings: true, | ||
}, | ||
], | ||
'@typescript-eslint/no-shadow': 'error', | ||
'@typescript-eslint/no-unsafe-member-access': 'warn', | ||
'@typescript-eslint/no-unsafe-argument': 'warn', | ||
'@typescript-eslint/no-unsafe-return': 'warn', | ||
'@typescript-eslint/no-unsafe-assignment': 'warn', | ||
'@typescript-eslint/no-unsafe-call': 'warn', | ||
'@typescript-eslint/no-object-literal-type-assertion': 'off', | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
'@typescript-eslint/no-namespace': 'error', | ||
'@typescript-eslint/unbound-method': 'off', | ||
'@typescript-eslint/no-base-to-string': 'off', | ||
'@typescript-eslint/no-unnecessary-type-assertion': 'off', | ||
'@typescript-eslint/restrict-template-expressions': 'off', | ||
'@typescript-eslint/no-misused-promises': 'off', | ||
'linebreak-style': ['error', 'unix'], | ||
'no-irregular-whitespace': ['error', {skipComments: true}], | ||
'no-alert': 'error', | ||
'prefer-const': 'error', | ||
'no-return-assign': 'error', | ||
'no-useless-call': 'error', | ||
'no-useless-concat': 'error', | ||
'prefer-template': 'error', | ||
'no-unused-vars': 'off', | ||
// "no-undef": "off", // typescript takes care of this for us | ||
'no-unreachable': 'off', // typescript takes care of this for us | ||
}, | ||
}, | ||
prettierConfig, | ||
{ | ||
files: ['**/*.js'], | ||
...tseslint.configs.disableTypeChecked, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** | ||
* @see https://prettier.io/docs/en/configuration.html | ||
* @type {import("prettier").Config} | ||
*/ | ||
const config = { | ||
printWidth: 120, | ||
proseWrap: 'never', | ||
overrides: [ | ||
{ | ||
files: '*.{js,jsx,ts,tsx}', | ||
options: { | ||
bracketSpacing: false, | ||
singleQuote: true, | ||
arrowParens: 'avoid', | ||
trailingComma: 'none', | ||
}, | ||
}, | ||
], | ||
}; | ||
|
||
export default config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,89 +1,86 @@ | ||
import alias from '@rollup/plugin-alias'; | ||
import babel from '@rollup/plugin-babel'; | ||
import json from '@rollup/plugin-json'; | ||
import resolve from '@rollup/plugin-node-resolve'; | ||
import terser from '@rollup/plugin-terser'; | ||
import bundleSize from 'rollup-plugin-bundle-size'; | ||
import alias from "@rollup/plugin-alias"; | ||
import commonjs from "@rollup/plugin-commonjs"; | ||
import json from "@rollup/plugin-json"; | ||
import nodeResolve from "@rollup/plugin-node-resolve"; | ||
import terser from "@rollup/plugin-terser"; | ||
import typescript from "@rollup/plugin-typescript"; | ||
import bundleSize from "rollup-plugin-bundle-size"; | ||
|
||
import pkg from './package.json' with {type: 'json'}; | ||
import pkg from "./package.json" with { type: "json" }; | ||
|
||
export function disallowedImports() { | ||
return { | ||
resolveId: module => { | ||
if (['vega', 'util', 'd3'].includes(module)) { | ||
throw new Error('Cannot import from Vega, Node Util, or D3 in Vega-Lite.'); | ||
resolveId: (module) => { | ||
if (["vega", "util", "d3"].includes(module)) { | ||
throw new Error("Cannot import from Vega, Node Util, or D3 in Vega-Lite."); | ||
} | ||
return null; | ||
} | ||
}, | ||
}; | ||
} | ||
|
||
export function debugImports() { | ||
return { | ||
resolveId: module => { | ||
if (module === 'pako') { | ||
throw new Error('Do not import pako in builds. Did you forget to remove drawDataflow?'); | ||
resolveId: (module) => { | ||
if (module === "pako") { | ||
throw new Error("Do not import pako in builds. Did you forget to remove drawDataflow?"); | ||
} | ||
return null; | ||
} | ||
}, | ||
}; | ||
} | ||
|
||
const extensions = ['.js', '.ts']; | ||
|
||
const globals = { | ||
vega: 'vega' | ||
}; | ||
|
||
const outputs = [ | ||
{ | ||
input: 'src/index.ts', | ||
output: [ | ||
{ | ||
file: pkg.main, | ||
format: 'umd', | ||
sourcemap: true, | ||
name: 'vegaLite', | ||
globals | ||
}, | ||
{ | ||
file: pkg.unpkg, | ||
format: 'umd', | ||
sourcemap: true, | ||
name: 'vegaLite', | ||
plugins: [terser()], | ||
globals | ||
} | ||
input: "src/index.ts", | ||
output: { | ||
file: pkg.exports.default, | ||
format: "esm", | ||
sourcemap: true, | ||
}, | ||
plugins: [ | ||
nodeResolve(), | ||
commonjs(), | ||
json(), | ||
typescript({ | ||
tsconfig: "./tsconfig.build.json", | ||
}), | ||
bundleSize(), | ||
], | ||
external: [...Object.keys(pkg.dependencies), ...Object.keys(pkg.peerDependencies)], | ||
}, | ||
{ | ||
input: "src/index.ts", | ||
output: { | ||
file: pkg.unpkg, | ||
format: "umd", | ||
name: "vegaLite", | ||
sourcemap: true, | ||
globals: { | ||
vega: "vega", | ||
}, | ||
}, | ||
plugins: [ | ||
disallowedImports(), | ||
debugImports(), | ||
alias({ | ||
entries: { | ||
'vega-event-selector': 'vega', | ||
'vega-expression': 'vega', | ||
'vega-util': 'vega' | ||
} | ||
"vega-event-selector": "vega", | ||
"vega-expression": "vega", | ||
"vega-util": "vega", | ||
}, | ||
}), | ||
resolve({browser: true, extensions}), | ||
nodeResolve(), | ||
commonjs(), | ||
json(), | ||
babel({ | ||
extensions, | ||
babelHelpers: 'bundled', | ||
presets: [ | ||
[ | ||
'@babel/env', | ||
{ | ||
targets: 'defaults' | ||
} | ||
], | ||
'@babel/typescript' | ||
] | ||
typescript({ | ||
tsconfig: "./tsconfig.build.json", | ||
}), | ||
bundleSize() | ||
terser(), | ||
bundleSize(), | ||
], | ||
external: ['vega'] | ||
} | ||
external: ["vega"], | ||
}, | ||
]; | ||
|
||
export default outputs; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.