Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
prettier: remove solidity plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
tynes committed Nov 14, 2023
1 parent 7b166a9 commit 4c2c8b5
Showing 1 changed file with 2 additions and 17 deletions.
19 changes: 2 additions & 17 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,10 @@
module.exports = {
$schema: 'http://json.schemastore.org/prettierrc',
plugins: ['prettier-plugin-solidity'],
plugins: [],
trailingComma: 'es5',
tabWidth: 2,
semi: false,
singleQuote: true,
arrowParens: 'always',
overrides: [
{
files: '*.sol',
options: {
// These options are native to Prettier.
printWidth: 100,
tabWidth: 4,
useTabs: false,
singleQuote: false,
bracketSpacing: true,
// These options are specific to the Solidity Plugin
explicitTypes: 'always',
compiler: '>=0.8.15',
},
},
],
overrides: [],
}

0 comments on commit 4c2c8b5

Please sign in to comment.