mirror of
https://github.com/zkitter/json-rpc-engine.git
synced 2026-01-09 15:17:56 -05:00
This PR updates various repository features for module template compliance. This repository should be fully compliant as of this PR, except for tests, which will be addressed in a follow-up. Notable changes include: - Updates the ESLint config and related dependencies - Adds `@lavamoat/allow-scripts` and the `setup` package script - Migrates from CircleCI to GitHub Actions - Bumps the minimum Node version to 14
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
// All of these are defaults except singleQuote, but we specify them
|
|
// for explicitness
|
|
module.exports = {
|
|
quoteProps: 'as-needed',
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'all',
|
|
};
|