Skip to content

Instantly share code, notes, and snippets.

View surdle's full-sized avatar
🚀
Exciting time in the world right now

Tristan Vidal surdle

🚀
Exciting time in the world right now
View GitHub Profile
@surdle
surdle / rome.json
Created March 17, 2023 17:27
Configuration for Rome
{
"$schema": "./node_modules/rome/configuration_schema.json",
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"enabled": true,
@surdle
surdle / Configure standard or ts-standard linter package.json .js
Last active March 1, 2023 21:47
Configure standard or ts-standard linter package.json
// standard
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
]
}
// ts-standard
"eslintConfig": {
"extends": [
"./node_modules/ts-standard/eslintrc.json"