mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-11 07:38:13 -05:00
* eh * dashboard layout * t * t * ethers issues identified * `/me` is loading & linting without error 🍞 * fixing an `import`s order error 🛼 * Update useEAS.ts * eas * attestations working * get attestations * attest * chore: improve design * chore: size * change design * fix: update schema * chore * eas * eas --------- Co-authored-by: dysbulic <dys@dhappy.org> Co-authored-by: Udit Takkar <udit222001@gmail.com>
16 lines
238 B
JavaScript
16 lines
238 B
JavaScript
module.exports = {
|
|
printWidth: 80,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
arrowParens: 'always',
|
|
// semi: false,
|
|
overrides: [
|
|
{
|
|
files: '*.yaml',
|
|
options: {
|
|
singleQuote: false,
|
|
},
|
|
},
|
|
],
|
|
};
|