10 lines
246 B
Bash
Executable File
10 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SCRIPT_DIR=$(dirname "$0")
|
|
|
|
cp "$SCRIPT_DIR/../config/lint/eslint.config.mjs" .
|
|
|
|
# TODO: Improve eslint config to include JSX and Vue configs too, read on website
|
|
npm i --save-dev @eslint/js typescript-eslint @stylistic/eslint-plugin
|
|
|