Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PB-1384 : modularize proj, number and coordinate utils #1227

Merged
merged 11 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
68 changes: 0 additions & 68 deletions .eslintrc.cjs

This file was deleted.

8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ yarn-error.log*
vite.config.js.timestamp-*.mjs

# Cypress and friends
tests/cypress/downloads
tests/cypress/videos
tests/cypress/screenshots
tests/results/*
**/tests/cypress/downloads
**/tests/cypress/videos
**/tests/cypress/screenshots
**/tests/results/*

# Git
*.orig
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18
v22
28 changes: 15 additions & 13 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
{
"printWidth": 100,
"singleQuote": true,
"semi": false,
"trailingComma": "es5",
"tabWidth": 4,
"jsxSingleQuote": false,
"plugins": ["prettier-plugin-jsdoc", "@prettier/plugin-xml"],
"overrides": [{
"files": "*.md",
"options": {
"tabWidth": 2
}
}]
"printWidth": 100,
"singleQuote": true,
"semi": false,
"trailingComma": "es5",
"tabWidth": 4,
"jsxSingleQuote": false,
"plugins": ["prettier-plugin-jsdoc", "@prettier/plugin-xml"],
"overrides": [
{
"files": "*.md",
"options": {
"tabWidth": 2
}
}
]
}
252 changes: 237 additions & 15 deletions CONTRIBUTING.md

Large diffs are not rendered by default.

Loading
Loading