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

Repo Overhaul #607

Open
wants to merge 3 commits into
base: main-perspectives-merge-with-debug
Choose a base branch
from
Open
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
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@
"globalThis": true,
"fetch": true,

"$ReadOnlyArray": true,
"$ReadOnly": true
"ReadonlyArray": true,
"Readonly": true
},
"ignorePatterns": [
".history",
Expand Down
44 changes: 0 additions & 44 deletions .flowconfig

This file was deleted.

3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"semi": false
"trailingComma": "all",
"semi": false
}
2 changes: 0 additions & 2 deletions .watchmanconfig

This file was deleted.

2 changes: 1 addition & 1 deletion Flow_Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ if let str = str {
translates to:

```typescript
let str: ?string;
let str: null | void | string;

let err: string = str; // type error

Expand Down
182 changes: 0 additions & 182 deletions KimMachineGun.Raindrop/src/NPPluginMain.js

This file was deleted.

61 changes: 0 additions & 61 deletions KimMachineGun.Raindrop/src/index.js

This file was deleted.

2 changes: 1 addition & 1 deletion __mocks__/Note.mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { logDebug } from '../helpers/dev'
* Usage: const myNote = new Note({ param changes here })
*
*/
import { textWithoutSyncedCopyTag } from '@helpers/syncedCopies'
import { textWithoutSyncedCopyTag } from '@np/helpers/syncedCopies'
export class Note {
// Properties
backlinks = [] /* sample: [ SOMETHING ], */
Expand Down
2 changes: 1 addition & 1 deletion __mocks__/_README-Mocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Editor.note now has some basic properties, but to look like a real NotePlan `Not
/* global describe, test, jest, expect */

import * as mainFile from '../src/NPPluginMain'
import { copyObject } from '@helpers/dev'
import { copyObject } from '@np/helpers/dev'

import { Calendar, Clipboard, CommandBar, DataStore, Editor, NotePlan, Note, Paragraph, Backlink, Range, CalendarItem, PluginObject, PluginCommandObject } from '@mocks/index'

Expand Down
Loading