Skip to content
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